home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / program / 441 / dlibs12 / chdir.c < prev    next >
C/C++ Source or Header  |  1990-11-23  |  131b  |  9 lines

  1. #include <stdio.h>
  2. #include <errno.h>
  3.  
  4. int chdir(pathname)
  5.     char *pathname;
  6.     {
  7.     return(errno = gemdos(0x3B, pathname));
  8.     }
  9.